home *** CD-ROM | disk | FTP | other *** search
/ Games of Daze / Infomagic - Games of Daze (Summer 1995) (Disc 1 of 2).iso / x2ftp / msdos / libs / knowhow4 / bldraw.h < prev    next >
C/C++ Source or Header  |  1994-10-10  |  328b  |  19 lines

  1. #ifndef __BLDRAW_
  2. #define __BLDRAW_
  3. /*   Draw class with help access */
  4.  
  5. #include "bl.h"
  6. #include "draw.h"
  7.  
  8. class BlockDraw : public ObjectKit
  9.     {
  10.     public:
  11.     Draw* draw;
  12.     Window* w1;
  13.  
  14.     BlockDraw(rect coord);
  15.     virtual int active() { return w1->active(); }
  16.     virtual void rearrange();
  17.     };
  18.  
  19. #endif __BLDRAW_